home *** CD-ROM | disk | FTP | other *** search
/ CD Actual Thematic 7: Programming / CDAT7.iso / demos / VisualAge for Java 2.0 Entry / setup / data1.cab / ide-e / IDE / cache / TTRR2D (.txt) < prev    next >
Encoding:
Java Class File  |  1998-09-16  |  1.2 KB  |  24 lines

  1. package com.sun.java.swing;
  2.  
  3. public class UIManager$LookAndFeelInfo {
  4.    private String name;
  5.    private String className;
  6.  
  7.    public UIManager$LookAndFeelInfo(String name, String className) {
  8.       this.name = name;
  9.       this.className = className;
  10.    }
  11.  
  12.    public String getName() {
  13.       return this.name;
  14.    }
  15.  
  16.    public String getClassName() {
  17.       return this.className;
  18.    }
  19.  
  20.    public String toString() {
  21.       return this.getClass().getName() + "[" + this.getName() + " " + this.getClassName() + "]";
  22.    }
  23. }
  24.